home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / vbulletin_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  79 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  based on work from
  4. #  (C) Tenable Network Security
  5. #
  6. #  Ref: Cheng Peng Su
  7. #
  8. #  This script is released under the GNU GPL v2
  9.  
  10.  
  11. if(description)
  12. {
  13.  script_id(14792);
  14.  script_bugtraq_id(10612, 10602);
  15.  if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"7256");
  16.  script_cve_id("CAN-2004-0620");
  17.   
  18.  script_version("$Revision: 1.5 $");
  19.  name["english"] = "vBulletin XSS";
  20.  script_name(english:name["english"]);
  21.  
  22.  desc["english"] = "
  23. The remote host is running vBulletin, a web based bulletin board system 
  24. written in PHP.
  25.  
  26. The remote version of this software is vulnerable to a cross-site scripting 
  27. issue, due to a failure of the application to properly sanitize user-supplied 
  28. URI input.
  29.  
  30. As a result of this vulnerability, it is possible for a remote attacker
  31. to create a malicious link containing script code that will be executed 
  32. in the browser of an unsuspecting user when followed. 
  33.  
  34. This may facilitate the theft of cookie-based authentication credentials 
  35. as well as other attacks.
  36.  
  37.  
  38. Solution : Upgrade to vBulletin 3.0.2 or newer
  39. Risk factor : Medium";
  40.  
  41.  
  42.  script_description(english:desc["english"]);
  43.  
  44.  summary["english"] = "Checks the version of vBulletin";
  45.  
  46.  script_summary(english:summary["english"]);
  47.  
  48.  script_category(ACT_GATHER_INFO);
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  51.  family["english"] = "CGI abuses : XSS";
  52.  script_family(english:family["english"]);
  53.  script_dependencie("find_service.nes", "http_version.nasl", "vbulletin_detect.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  exit(0);
  56. }
  57.  
  58. # Check starts here
  59.  
  60. include("http_func.inc");
  61. include("http_keepalive.inc");
  62.  
  63.  
  64.  
  65. port = get_http_port(default:80);
  66.  
  67. if(!get_port_state(port))exit(0);
  68. if ( ! can_host_php(port:port) ) exit(0);
  69.  
  70.  
  71. # Test an install.
  72. install = get_kb_item(string("www/", port, "/vBulletin"));
  73. if (isnull(install)) exit(0);
  74. matches = eregmatch(string:install, pattern:"^(.+) under (/.*)$");
  75. if (!isnull(matches)) {
  76.   ver = matches[1];
  77.   if ( ver =~ '3.0(\\.[01])?[^0-9]' ) security_warning(port);
  78. }
  79.